* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Footlight MT Light','Times New Roman', Times, serif;
}

body, html {
  /* height: 100%; */
  overflow-x: hidden;
}



/* Optional: dark overlay for readability */
.bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 0;
}

/* Navbar */
header {
  background: #1a2d50;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 8%;
  height: 70px; /* fixed consistent height */
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 70px;
  height: auto;
  object-fit: contain; /* keeps logo clear */
}

.logo h3 {
  margin-left: 10px;
  color: #fefefe;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px; /* consistent gap between links */
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color:  #ff8400;
}

/* Hamburger for mobile */
.menu-icon {
  display: none;
  font-size: 28px;
  cursor: pointer;
  user-select: none;
  z-index: 1100;
}

/* Responsive */
@media (max-width: 900px) {
  .navbar {
    padding: 10px 20px;
    height: 60px;
  }

  .logo img {
    width: 45px;
  }

  .logo h3 {
    font-size: 22px;
  }

  .nav-links {
    gap: 18px;
  }

  .nav-links a {
    font-size: 16px;
  }
}

@media (max-width: 750px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.9);
    position: absolute;
    top: 65px;
    right: 10px;
    width: 150px;
    padding: 12px;
    border-radius: 8px;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-icon {
    display: block;
  }
}



/* Hero */
.hero {
  text-align: center;
  background: linear-gradient(to right, #dedeff, #a0d0f7);
  color: #fff;
  padding: 4rem 2rem 3rem;
}

.hero-overlay h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #ff8400;
  letter-spacing: 1px;
}

.tagline {
  font-size: 1.3rem;
  margin-top: 0.6rem;
  font-weight: 400;
  color: #003366;
}
/* Slider Container */
/* ===== Slider Container ===== */
.slider {
  margin: 2rem auto;        /* space around */
  width: 100%;              /* full width */
  max-width: 1200px;        /* limit on big screens like TV */
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ===== Video Styling ===== */
.slider video {
  width: 100%;              /* take full width of container */
  height: auto;             /* keep aspect ratio */
  max-height: 80vh;         /* don’t overflow vertically (esp. on TVs) */
  object-fit: cover;        /* fills frame, avoids black bars */
  display: block;
  border-radius: 7px;
}

/* ===== Responsive Breakpoints ===== */
@media (max-width: 992px) {   /* Tablets / small laptops */
  .slider {
    max-width: 95%;
  }
  .slider video {
    max-height: 400px;
  }
}

@media (max-width: 600px) {   /* Mobiles */
  .slider {
    max-width: 100%;
  }
  .slider video {
    max-height: 300px;
  }
}

@media (max-width: 350px) {   /* very small devices */
  .slider video {
    max-height: 270px;
  }
}


/* ===== ABOUT SECTION (Responsive Improved) ===== */
.about-section {
  padding: 3rem 1rem;
  background: #eeeefc;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;  /* ensures wrapping on small screens */
}

/* Image Styling */
.about-image {
  flex: 1 1 300px;  /* allow shrinking but keep min 300px */
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

/* Text Styling */
.about-text {
  flex: 1 1 300px;  /* adjusts with screen size */
  padding: 1rem;
  box-sizing: border-box;
}

.about-text h2 {
  font-size: clamp(1.4rem, 2vw, 2rem); /* fluid font */
  margin-bottom: 1rem;
  color: #ff8400;
  font-weight: 700;
}

.about-text p {
  margin-bottom: 1rem;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: #444;
  line-height: 1.6;
}

.about-text strong {
  color: #0852b4;
}

.about-text em {
  font-style: italic;
  color: #051b34;
}

/* Button Styling */
.about-btn {
  margin-top: 1rem;
  background: #004aad;
  color: #fff;
  padding: 0.8rem 1.6rem;
  border: none;
  border-radius: 8px;
  font-size: clamp(0.8rem, 1vw, 1rem);
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 75, 173, 0.4);
  transition: background 0.3s ease, transform 0.2s ease;
}

.about-btn:hover {
  background: #ff8400;
  transform: translateY(-2px);
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Tablets */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }
  .about-text {
    padding: 0.5rem;
  }
}

/* Small Phones */
@media (max-width: 480px) {
  .about-section {
    padding: 2rem 0.8rem;
  }
  .about-text h2 {
    font-size: 1.3rem;
  }
  .about-text p {
    font-size: 0.85rem;
    line-height: 1.4;
  }
  .about-btn {
    font-size: 0.8rem;
    padding: 0.7rem 1.2rem;
  }
}

/* Extra Small (<=355px like you mentioned) */
@media (max-width: 355px) {
  .about-container {
    gap: 1rem;
  }
  .about-text {
    padding: 0.3rem;
  }
  .about-text h2 {
    font-size: 1.1rem;
  }
  .about-text p {
    font-size: 0.78rem;
  }
  .about-btn {
    font-size: 0.7rem;
    padding: 0.5rem 1rem;
  }
}


/* ===== Services Section (Improved & Responsive) ===== */
.services-section {
  padding: 4rem 1.5rem;
  background: #a4d0fc;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.services-container {
  max-width: 1250px;
  margin: auto;
  text-align: center;
}

.services-section h2 {
  font-size: clamp(1.6rem, 2.2vw, 2.4rem);
  font-weight: 700;
  color: #002855;
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.services-tagline {
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  color: #000;
  margin-bottom: 3rem;
  line-height: 1.5;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* Service Card */
.service-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 40, 85, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 35px rgba(0, 40, 85, 0.15);
}

/* Image Section */
.service-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* Text Content */
.service-content {
  padding: 1.5rem;
  text-align: left;
}

.service-content h3 {
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
  font-weight: 600;
  color: #004aad;
  margin-bottom: 0.8rem;
}

.service-content p {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: #444;
  line-height: 1.6;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Tablets */
@media (max-width: 992px) {
  .services-section {
    padding: 3rem 1rem;
  }
  .services-grid {
    gap: 1.5rem;
  }
}

/* Small Phones */
@media (max-width: 480px) {
  .services-section {
    padding: 2rem 0.8rem;
  }
  .services-tagline {
    font-size: 0.85rem;
    margin-bottom: 2rem;
  }
  .service-content {
    padding: 1rem;
  }
  .service-content h3 {
    font-size: 1.05rem;
  }
  .service-content p {
    font-size: 0.82rem;
  }
}

/* Extra Small (<=355px like you mentioned) */
@media (max-width: 385px) {
  .services-section {
    padding: 1.5rem 0.5rem;
  }
  .services-grid {
    grid-template-columns: 1fr; /* stack cards in 1 column */
    gap: 1.2rem;
  }
  .service-content {
    padding: 0.8rem;
  }
  .service-content h3 {
    font-size: 0.95rem;
  }
  .service-content p {
    font-size: 0.75rem;
    line-height: 1.4;
  }
}






/* About Section */
.about-section {
  padding: 70px 20px;
  background: #f8faff;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: #003366;
  margin-bottom: 15px;
}

.section-intro {
  text-align: center;
  font-size: 1.05rem;
  max-width: 850px;
  margin: 0 auto 40px auto;
  color: #444;
  line-height: 1.6;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
}

.about-card {
  background: #fff;
  border-radius: 14px;
  padding: 25px;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.about-card h3 {
  font-size: 1.25rem;
  color: #004aad;
  margin-bottom: 12px;
}

.about-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-card ul li {
  font-size: 0.95rem;
  color: #444;
  margin: 8px 0;
  padding-left: 20px;
  position: relative;
}

.about-card ul li::before {
  content: "✔";
  color: #004aad;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

/* Unique Section */
.unique-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #004aad, #0078ff);
  color: #fff;
}

.unique-section .light {
  color: #fff;
}

.unique-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.unique-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.unique-item:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.2);
}

.unique-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.unique-item h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #ffd700;
}

.unique-item p {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* --------- Responsive Breakpoints --------- */

/* Large Screens (TV & Wide Monitors >1400px) */
@media (min-width: 1400px) {
  .section-title {
    font-size: 2.6rem;
  }
  .section-intro {
    font-size: 1.2rem;
  }
  .about-card h3,
  .unique-item h3 {
    font-size: 1.4rem;
  }
  .about-card ul li,
  .unique-item p {
    font-size: 1.05rem;
  }
  .unique-item img {
    height: 220px;
  }
}

/* Medium Screens (Laptops 992px - 1399px) */
@media (max-width: 1399px) and (min-width: 992px) {
  .section-title {
    font-size: 2.2rem;
  }
  .section-intro {
    font-size: 1.05rem;
  }
  .unique-item img {
    height: 190px;
  }
}

/* Tablets (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
  .about-section,
  .unique-section {
    padding: 60px 15px;
  }
  .section-title {
    font-size: 1.9rem;
  }
  .section-intro {
    font-size: 1rem;
    padding: 0 15px;
  }
  .about-card {
    padding: 20px;
  }
  .unique-item img {
    height: 160px;
  }
}

/* Mobiles (550px - 767px) */
@media (max-width: 767px) and (min-width: 551px) {
  .section-title {
    font-size: 1.7rem;
  }
  .section-intro {
    font-size: 0.95rem;
  }
  .about-card {
    padding: 18px;
  }
  .about-card h3,
  .unique-item h3 {
    font-size: 1.1rem;
  }
  .about-card ul li,
  .unique-item p {
    font-size: 0.9rem;
  }
  .unique-item img {
    height: 150px;
  }
}

/* Small Mobiles (385px - 550px) */
@media (max-width: 550px) and (min-width: 385px) {
  .section-title {
    font-size: 1.5rem;
  }
  .section-intro {
    font-size: 0.9rem;
  }
  .about-card {
    padding: 15px;
  }
  .unique-item img {
    height: 140px;
  }
  .about-card h3,
  .unique-item h3 {
    font-size: 1rem;
  }
  .about-card ul li,
  .unique-item p {
    font-size: 0.85rem;
  }
}

/* Extra Small Mobiles (<385px) */
@media (max-width: 384px) {
  .section-title {
    font-size: 1.3rem;
  }
  .section-intro {
    font-size: 0.85rem;
  }
  .about-card,
  .unique-item {
    padding: 12px;
  }
  .unique-item img {
    height: 120px;
  }
  .about-card h3,
  .unique-item h3 {
    font-size: 0.95rem;
  }
  .about-card ul li,
  .unique-item p {
    font-size: 0.8rem;
  }
}



/* ===== Team Section ===== */
.team-section {
  padding: 5rem 2rem;
  background: #a2ccf6;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.team-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.team-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #002855;
  margin-bottom: 1rem;
}

.team-intro {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 3rem;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Grid Layout */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

/* Team Member Card */
.team-member {
  background: #fff;
  border-radius: 15px;
  padding: 1.2rem;
  box-shadow: 0 6px 16px rgba(0, 40, 85, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;   /* no underline */
  color: inherit;          /* keep natural text color */
}

.team-member:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 40, 85, 0.12);
}

.team-member img {
  width: 100%;
  height: auto;           /* keep natural proportion */
  border-radius: 7px;
  margin-bottom: 0.8rem;
  padding-bottom: 10px;
  display: block;
}


.team-member h4 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #004aad;
  margin-bottom: 0.4rem;
}

.team-member p {
  font-size: 0.95rem;
  color: #444;
}

.team-member .role-desc {
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.5rem;
  line-height: 1.4;
}

/* ===== Responsive Breakpoints ===== */

/* Large Screens / TVs */
@media (min-width: 1600px) {
  .team-section h2 {
    font-size: 2.6rem;
  }
  .team-member img {
    max-width: 260px;
    margin: auto;
  }
}

/* Tablets (600px - 900px) */
@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }
  .team-member img {
    max-width: 200px;
    margin: auto;
  }
}

/* Mobiles (≤600px) */
@media (max-width: 600px) {
  .team-section h2 {
    font-size: 1.8rem;
  }
  .team-intro {
    font-size: 0.95rem;
  }
  .team-member img {
    max-width: 160px;
    margin: auto;
  }
}

/* Small Mobiles (≤400px) */
@media (max-width: 400px) {
  .team-section h2 {
    font-size: 1.5rem;
  }
  .team-member img {
    max-width: 140px;
  }
  .team-member h4 {
    font-size: 1rem;
  }
}

/* Extra Small Devices (≤300px) */
@media (max-width: 300px) {
  .team-member img {
    max-width: 120px;
  }
  .team-member h4 {
    font-size: 0.9rem;
  }
  .team-member p,
  .team-member .role-desc {
    font-size: 0.8rem;
  }
}




.we-work-with {
  padding: 5rem 2rem;
  background: #f4f8fc;
  text-align: center;
}

.we-work-with h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #002855;
  margin-bottom: 1rem;
}

.we-work-with .intro {
  font-size: 1.05rem;
  color: #444;
  max-width: 750px;
  margin: 0 auto 3rem auto;
  line-height: 1.7;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.work-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 2rem 1.5rem;
  font-weight: 600;
  font-size: 1.05rem;
  color: #004aad;
  box-shadow: 0 6px 18px rgba(0, 40, 85, 0.1);
  transition: all 0.3s ease;
}

.work-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 28px rgba(0, 40, 85, 0.15);
  background: linear-gradient(to bottom right, #ffffff, #f0f6ff);
}

/* ---------------- Responsive ---------------- */
@media (max-width: 1200px) {
  .we-work-with h2 {
    font-size: 2.2rem;
  }
  .we-work-with .intro {
    font-size: 1rem;
    max-width: 680px;
  }
}

@media (max-width: 992px) {
  .we-work-with {
    padding: 4rem 1.5rem;
  }
  .we-work-with h2 {
    font-size: 2rem;
  }
  .work-card {
    padding: 1.8rem 1.2rem;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .we-work-with h2 {
    font-size: 1.8rem;
  }
  .we-work-with .intro {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }
  .work-card {
    padding: 1.5rem 1rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 550px) {
  .we-work-with {
    padding: 3rem 1rem;
  }
  .we-work-with h2 {
    font-size: 1.6rem;
  }
  .we-work-with .intro {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .work-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .work-card {
    padding: 1.2rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 350px) {
  .we-work-with h2 {
    font-size: 1.4rem;
  }
  .we-work-with .intro {
    font-size: 0.85rem;
  }
  .work-card {
    padding: 1rem;
    font-size: 0.85rem;
  }
}




/* Spotlight */
.spotlight {
  background: #f5f7fa;
  padding: 60px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.spotlight .container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.spotlight .sub-heading {
  font-size: 2.7rem;
  color: #ff8400;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.spotlight .title {
  font-size: 2rem;
  color: #0a2d50;
  margin-bottom: 20px;
  font-weight: 700;
}

.spotlight .description {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  max-width: 850px;
  margin: auto;
}

.spotlight-image {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.spotlight-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .spotlight .title {
    font-size: 1.6rem;
  }
  .spotlight .description {
    font-size: 0.95rem;
  }
  .spotlight-image img {
    max-width: 90%;
  }
}
  







  .logo-slider-section {
  padding: 30px 20px;
  background-color: #ffffff;
  text-align: center;
  overflow: hidden;
}

.slider-heading {
  font-size: 30px;
  margin-bottom: 20px;
  color: #333;
}

.logo-slider {
  overflow: hidden;
  position: relative;
}

.logo-track {
  display: flex;
  width: max-content;
  animation: scroll 25s linear infinite;
}

.logo-track img {
  width: 80px;
  height: auto;
  margin: 0 30px;
  flex-shrink: 0;
  transition: transform 0.5s ease;
}



/* Scroll Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .logo-track img {
    width: 80px;
    margin: 0 15px;
  }

  .slider-heading {
    font-size: 26px;
  }
}


  /* footer */

.footer {
  background: linear-gradient(135deg, #0a2d50, #001627);
  color: #ddd;
  padding: 60px 20px 20px;
  font-family: 'Segoe UI', Tahoma, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-section h3, 
.footer-section h4 {
  color: #ff8400;
  margin-bottom: 15px;
}

.footer-logo {
  width: 170px;
  margin-bottom: 15px;
  margin-left: 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #ff8400;
}

.contact-info p {
  margin: 8px 0;
}

.contact-info i {
  margin-right: 8px;
  color: #ff8400;
}

.feedback-form form {
  display: flex;
  flex-direction: column;
}

.feedback-form input, 
.feedback-form textarea {
  margin-bottom: 12px;
  padding: 12px;
  border: none;
  border-radius: 8px;
  outline: none;
}

.feedback-form button {
  background: #ff8400;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.feedback-form button:hover {
  background: #e67300;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 14px;
  color: #aaa;
}

